Skip to content

Feature/deeplink android #28

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 28 commits into
base: main
Choose a base branch
from

Conversation

HardikSJain
Copy link

For the redirection of deeplinks in android

  1. Add the intent in AndroidManifest.xml located in android/app/src/main
            <meta-data android:name="flutter-deeplink" android:value="true"/>
            <intent-filter android:autoVerify="true">
                <action android:name="android.intent.action.VIEW" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />
                <data android:scheme="http" android:host="example.com" />
                <data android:scheme="https" android:host="example.com" />
            </intent-filter>

Replace example.com with your website deeplink.

  1. Add the Server-side configuration for android:
    Create an assetlinks.json file and place it in your website’s .well-known directory. (i.e inside public folder, create a .well-known folder and create a assetlinks.json in it)

Inside assetlinks.json mention

[{
  "relation": ["delegate_permission/common.handle_all_urls"],
  "target": {
    "namespace": "android_app",
    "package_name": "com.example",
    "sha256_cert_fingerprints":
    ["your apps sha256 certificate"]
  }
}]

Please replace package_name with your apps package name and sha256_cert_fingerprints with your apps sha 256 certificate

Hardik and others added 28 commits July 11, 2024 03:05
Refactor and Organize Asset Constants by HardikSJain
I had already added firebase.json to .gitignore, but I'm not sure how it got committed. 
Have removed it now.
…rd-email-verification

Feature/reset password email verification by Nemin Sheth
fix: bottom navigation current index by HardikSJain
…eset-password-email-verification

Revert "Feature/reset password email verification"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants